/* ========================================
   Google Earth AI Goldmine — Sales Page CSS
   Premium Dark Theme with Gold/Cyan Accents
   ======================================== */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --bg-deep: #0a0e1a;
  --bg-section: #0f1525;
  --bg-section-alt: #111a2e;
  --bg-card: rgba(17, 25, 50, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  /* Accent colors */
  --gold: #f0c040;
  --gold-glow: #f0c04066;
  --gold-dark: #b8941f;
  --cyan: #00d4ff;
  --cyan-glow: #00d4ff44;
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f97316;
  
  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;
  --text-accent: var(--gold);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #111a2e 50%, #0f1525 100%);
  --gradient-gold: linear-gradient(135deg, #f0c040, #e8a820, #f0c040);
  --gradient-cta: linear-gradient(135deg, #f0c040, #e89820);
  --gradient-cta-hover: linear-gradient(135deg, #ffe066, #f0c040);
  --gradient-cyan: linear-gradient(135deg, #00d4ff, #0091b3);
  
  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1080px;
  
  /* Fonts */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--gold);
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-secondary { color: var(--text-secondary); }
.text-dim { color: var(--text-dim); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ---------- Animated Orb Background ---------- */
.orb-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-bg .orb:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.orb-bg .orb:nth-child(2) {
  width: 500px; height: 500px;
  background: var(--cyan);
  bottom: -200px; right: -200px;
  animation-delay: -7s;
}
.orb-bg .orb:nth-child(3) {
  width: 400px; height: 400px;
  background: #6366f1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 60px) scale(0.9); }
}

/* ---------- Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 9999;
  transition: width 0.15s ease;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ---------- Sticky CTA Nav ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.sticky-cta__price {
  color: var(--gold);
  font-weight: 800;
}
.sticky-cta .btn-cta {
  padding: 12px 32px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ---------- Sections ---------- */
section {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--bg-section);
}
.section-alt {
  background: var(--bg-section-alt);
}
.section-deep {
  background: var(--bg-deep);
}

.section-pad {
  padding: var(--section-pad) 0;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

/* ---------- Headlines ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-headline .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.sub-headline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--gradient-cta);
  color: #0a0e1a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px var(--gold-glow), 0 0 0 0 var(--gold-glow);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: ctaPulse 3s ease-in-out infinite;
}
.btn-cta:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px var(--gold-glow), 0 0 0 4px var(--gold-glow);
  color: #0a0e1a;
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(45deg) translateX(-200%);
  transition: transform 0.6s;
}
.btn-cta:hover::after {
  transform: rotate(45deg) translateX(100%);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 24px var(--gold-glow), 0 0 0 0 var(--gold-glow); }
  50% { box-shadow: 0 4px 24px var(--gold-glow), 0 0 0 8px transparent; }
}

.btn-sub {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-body);
}

.cta-wrapper {
  text-align: center;
  margin: 40px 0;
}
.cta-wrapper .cta-sub-text {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.cta-wrapper img {
  display: inline-block;
}
.wplus-btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 24px 0 8px;
}
.wplus-btn-wrapper img {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}
.wplus-btn-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px var(--gold-glow);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Bullet List ---------- */
.feature-bullets {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-secondary);
}
.feature-bullets li .icon {
  color: var(--green);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Cards ---------- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.2);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- No Need List ---------- */
.no-need-list {
  list-style: none;
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}
.no-need-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.no-need-list li .x-icon {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Problem Agitation ---------- */
.pain-point {
  background: rgba(239, 68, 68, 0.06);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin: 16px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* ---------- Old vs New ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.comparison-col {
  padding: 28px;
  border-radius: var(--radius-lg);
}
.comparison-col.old-way {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.comparison-col.new-way {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
}
.comparison-col h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comparison-col ul {
  list-style: none;
}
.comparison-col ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.comparison-col ul li .icon {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Product Image ---------- */
.product-image-wrap {
  max-width: 700px;
  margin: 40px auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4), 0 0 60px var(--gold-glow);
}

/* ---------- Value Stack ---------- */
.value-stack {
  max-width: 600px;
  margin: 32px auto;
}
.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.95rem;
}
.value-row:last-child {
  border-bottom: none;
}
.value-row .label {
  color: var(--text-secondary);
}
.value-row .amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}
.value-total {
  background: rgba(240, 192, 64, 0.08);
  border: 1px solid rgba(240, 192, 64, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}
.value-total .total-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.value-total .total-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.value-total .total-amount .strikethrough {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 1.2rem;
  font-weight: 400;
  margin-right: 12px;
}

/* ---------- Pricing Card ---------- */
.pricing-card {
  max-width: 500px;
  margin: 40px auto;
  background: var(--bg-glass);
  border: 2px solid rgba(240, 192, 64, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(240, 192, 64, 0.08);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}
.pricing-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #0a0e1a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 60px;
  margin-bottom: 20px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-original {
  font-size: 1.2rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ---------- Bonuses ---------- */
.bonus-card {
  background: var(--bg-glass);
  border: 1px solid rgba(240, 192, 64, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s, border-color 0.3s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 192, 64, 0.35);
}
.bonus-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
}
.bonus-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.bonus-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.bonus-value {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: 60px;
  margin-top: 8px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(255,255,255,0.12);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-glass);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover {
  background: rgba(255,255,255,0.06);
}
.faq-question .chevron {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Who This Is For ---------- */
.who-list {
  list-style: none;
  max-width: 600px;
  margin: 24px auto;
  text-align: left;
}
.who-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.who-list li .check-icon {
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Urgency Banner ---------- */
.urgency-banner {
  background: linear-gradient(135deg, rgba(240, 192, 64, 0.1), rgba(249, 115, 22, 0.1));
  border: 1px solid rgba(240, 192, 64, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  margin: 40px 0;
}
.urgency-banner p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
}
.urgency-banner small {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-glass);
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text-primary);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-disclaimer {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Separator ---------- */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
  border: none;
  margin: 0;
}

/* ---------- Image Glow Frame ---------- */
.glow-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 40px var(--cyan-glow);
  margin: 32px auto;
  max-width: 700px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Inline Page (Disclaimer/Privacy/Support) ---------- */
.legal-page {
  background: var(--bg-deep);
  min-height: 100vh;
  color: var(--text-primary);
}
.legal-page .container {
  max-width: 800px;
  padding: 60px 24px;
}
.legal-page h1 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.legal-page h2 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--cyan);
}
.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-page ul {
  margin-left: 20px;
  margin-bottom: 16px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 32px;
  text-decoration: none;
}
.legal-back:hover {
  color: var(--text-primary);
}

/* ---------- Contact Form (Support Page) ---------- */
.contact-form {
  max-width: 500px;
  margin: 32px auto 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .sticky-cta__text {
    font-size: 0.8rem;
  }
  .trust-strip {
    gap: 16px;
  }
  .trust-item {
    font-size: 0.75rem;
  }
  .bonus-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pricing-amount {
    font-size: 3rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .btn-cta {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
  .glass-card {
    padding: 20px;
  }
  .pricing-card {
    padding: 32px 24px;
  }
}

/* ---------- Warrior Plus Disclaimer ---------- */
.wplus_spdisclaimer {
  max-width: 800px;
  margin: 20px auto;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
}
